home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 June / Amiga Games Extra 1996 #6.iso / userbox / publicdomain / gnutar / source.lzh / source / sasinclude / sys / timeb.h < prev    next >
C/C++ Source or Header  |  1995-09-16  |  235b  |  12 lines

  1. #ifndef _TIMEB_
  2. #define _TIMEB_
  3.  
  4. struct timeb {
  5.     time_t        time;        /* Seconds since the epoch    */
  6.     unsigned short    millitm;    /* Field not used        */
  7.     short        timezone;
  8.     short        dstflag;    /* Field not used        */
  9. };
  10.  
  11. #endif /* _TIMEB_ */
  12.